function TheatreSeats() {
	var seats = [];

	this.placePerson = function(person) {
		seats.push(person);
	};
}